home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Freeware / EvenMore / rexx / lha.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  2002-03-13  |  276 b   |  17 lines

  1. /* View lha archives with EvenMore */
  2.  
  3. parse arg filename
  4.  
  5. if ~show('p','rexxsupport.library') then call addlib('rexxsupport.library',0,-30,0)
  6.  
  7. address command 'c:lha v 'filename' >ram:lhaview'
  8.  
  9. address 'EVENMORE.1'
  10. "OPEN ram:lhaview"
  11.  
  12. delay(150)
  13.  
  14. delete('ram:lhaview')
  15.  
  16. exit
  17.